From: Tom Tromey Date: Wed, 16 Feb 2011 15:20:08 +0000 (-0700) Subject: * lisp.h (DEFVAR_BUFFER_DEFAULTS): Use BVAR. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~324^2~4752 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=3378ebf25b2bf4e39cfdb5e94e9c6e58499a471b;p=emacs.git * lisp.h (DEFVAR_BUFFER_DEFAULTS): Use BVAR. --- diff --git a/src/ChangeLog b/src/ChangeLog index 852dd27be7f..229fbbc1b18 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2011-02-16 Tom Tromey + + * lisp.h (DEFVAR_BUFFER_DEFAULTS): Use BVAR. + 2011-02-16 Tom Tromey * xfns.c (x_create_tip_frame, Fx_show_tip): Replace B_ with BVAR. diff --git a/src/lisp.h b/src/lisp.h index bd1595bce0b..b82f1b2f722 100644 --- a/src/lisp.h +++ b/src/lisp.h @@ -1882,7 +1882,7 @@ extern void defvar_kboard (struct Lisp_Kboard_Objfwd *, const char *, int); #define DEFVAR_BUFFER_DEFAULTS(lname, vname, doc) \ do { \ static struct Lisp_Objfwd o_fwd; \ - defvar_lisp_nopro (&o_fwd, lname, &buffer_defaults.vname ## _); \ + defvar_lisp_nopro (&o_fwd, lname, &BVAR (&buffer_defaults, vname)); \ } while (0) #define DEFVAR_KBOARD(lname, vname, doc) \